home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-E / MiniCad 5 Demo (Click Me!) / MiniCad 5 Demo (Click Me!).rsrc / STR#_7014.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  1.1 KB  |  41 lines

  1. Len(v : STRING) : INTEGER;
  2.  
  3. Returns the number of characters in v.
  4.  
  5. Pos(SubStr, Str : STRING) : INTEGER;
  6.  
  7. Searches for SubStr within Str and returns an integer value that is the index of the first character of SubStr within Str.
  8.  
  9. Concat(Str1, ..., Strn : STRING) : STRING;
  10.  
  11. Concatenates all the parameters in the order they are written and returns the concatenated string.
  12.  
  13. Copy(Source : STRING;  Index, Count : INTEGER) : STRING;
  14.  
  15. Returns a string containing count characters from source, beginning at source[Index].
  16.  
  17. Delete(VAR Source : STRING;  Index, Count : INTEGER);
  18.  
  19. Removes Count characters from Source beginning at Source[Index].
  20.  
  21. Insert(Source : STRING; VAR Dest : STRING; Index : INTEGER);
  22.  
  23. Insert Source into Dest at location Dest[Index].
  24.  
  25. Str2Num(s : STRING) : REAL;
  26.  
  27. Converts numeric string value to a real number.
  28.  
  29. Num2Str(DecimalPlace : INTEGER;  V : REAL) : STRING;
  30.  
  31. Converts a REAL value to a STRING.
  32.  
  33. Num2StrF(V : REAL) : STRING;
  34.  
  35. Converts a REAL value into a STRING.  The numeric value will be displayed in the current unit settings of the drawing.
  36.  
  37. UprString(VAR V : STRING);
  38.  
  39. Converts all characters in V to uppercase.
  40.  
  41.